* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* ===============================
   SECTION
================================ */
.founding-members {
    margin: auto;
    padding: 70px 20px;
    font-family: "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}

.founding-members h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.founding-member-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 8px;
    position: relative;
}

.founding-member-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

/* ===============================
   ONE COLUMN LAYOUT
================================ */
.members-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ===============================
   CARD
================================ */
.member-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
    position: relative;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ===============================
   IMAGE
================================ */
.member-img {
    min-width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ff6a00;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   CONTENT
================================ */
.member-info {
    flex: 1;
}

.member-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}

.member-info hr {
    width: 60px;
    border: 2px solid #ff6a00;
    margin: 10px 0;
}

.member-contact {
    color: #ff6a00;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===============================
   HOVER EFFECT
================================ */
.member-card:hover .member-title {
    color: #ff6a00;
}
.member-card:hover {
    border: 2px solid #ff6a00;
}
/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .member-card {
        flex-direction: column;
        text-align: center;
    }

    .member-img {
        margin-bottom: 20px;
    }

    .member-info hr {
        margin: 10px auto;
    }
}
